home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / Mod.au3 < prev    next >
Text File  |  2006-06-17  |  255b  |  11 lines

  1. $n = 18
  2. If mod($n, 2) = 0 Then
  3.     MsgBox(0,"", $n & " is an even number.")
  4. Else
  5.     MsgBox(0, "", $n & " is an odd number.")
  6. EndIf
  7.  
  8. $x = mod(4, 7)  ;$x == 4 because the divisor > dividend
  9.  
  10. $y = mod(1, 3/4)  ;$y == 0.25 because the divisor is a float
  11.